@import url('./index.css');



.about-video-img {
    height: 40vh;
    aspect-ratio: 5/2;
    object-fit: fill;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-video-section-play {
    text-decoration: none;
    background-color: var(--white-color);
    border: 1px solid white;
    color: var(--dark-gray-color);
    border-radius: 50%;
    padding: 15px;
    position: relative;
    width: 5em;
    height: 5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-video-section-play::after {
    position: absolute;
    content: '';
    bottom: -7px;
    top: -7px;
    left: -7px;
    right: -7px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #fff;
    margin: 0px;
    opacity: 1;
    transform-origin: center;
    animation: anim2 800ms linear 600ms infinite;
}

.about-video-section-play::before {
    position: absolute;
    content: '';
    bottom: -7px;
    top: -7px;
    left: -7px;
    right: -7px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #fff;
    margin: 0px;
    opacity: 0.8;
    transform-origin: center;
    animation: anim 800ms linear 600ms infinite;
}

@keyframes anim2 {
    from {
        margin: 0px;
        opacity: 1;
    }

    to {
        margin: -35px;
        opacity: 0;
    }
}

@keyframes anim {
    from {
        margin: -35px;
        opacity: 1;
    }

    to {
        margin: -70px;
        opacity: 0;
    }
}

.about-section-card {
    width: 24%;
    aspect-ratio: 1/1;
    background-color: var(--blue-color);
    border-radius: 20px;
    color: var(--yellow-color);
    padding: 3rem 2rem;
}
.about-section-card p{
    margin: 0;
}

.about-section-card-icon {
    font-size: 3rem;
}

.about-section-card-count {
    font-size: 5rem;
    font-weight: 600;
}

.about-guide-section {
    background-color: var(--yellow-color);
    border-radius: 20px;
    padding: 0 3rem;
    color: var(--white-color);
    min-height: 30vh;
    max-height: 30vh;
    overflow: hidden;
}






@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 576px) {

    .about-section-card {
        width: 48%;
    }
    .about-section-card-count {
        font-size: 2rem;
    }

    .about-guide-section {
        padding: 0 1rem;
        padding-bottom: 1rem;
        height: auto;
        max-height: 80vh;
    }

    .about-guide-section img {
        width: 100%;
        object-fit: cover;
    }
    
}